home *** CD-ROM | disk | FTP | other *** search
/ Directorty Opus 5 - Magellan 2 / Opus 5 - Magellan 2.iso / Archiv / Install_3.3.lha / Install_3.3 / ARexx / InstallerHelp.rexx < prev   
OS/2 REXX Batch file  |  1997-05-09  |  356b  |  18 lines

  1. /*
  2. $VER: InstallHelp 1.1 (09.05.97)
  3. */
  4.  
  5. parse arg buttons ' :: ' help
  6.  
  7. say buttons
  8. say help
  9.  
  10. address DOPUS.1 command loadbuttons buttons
  11.  
  12. if exists('SYS:Utilities/MultiView') then do
  13.     address command 'c:run >NIL: <NIL: SYS:Utilities/MultiView "' || help || '"'
  14. end
  15. else do
  16.     address command 'c:run >NIL: <NIL: SYS:Utilities/AmigaGuide "' || help || '"'
  17. end
  18.